type golang.org/x/tools/internal/event/keys.UInt8

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L263: type UInt8 struct {
		keys.go#L269: func NewUInt8(name, description string) *UInt8 {
		keys.go#L270: 	return &UInt8{name: name, description: description}
		keys.go#L273: func (k *UInt8) Name() string        { return k.name }
		keys.go#L274: func (k *UInt8) Description() string { return k.description }
		keys.go#L276: func (k *UInt8) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L281: func (k *UInt8) Of(v uint8) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L284: func (k *UInt8) Get(lm label.Map) uint8 {
		keys.go#L292: func (k *UInt8) From(t label.Label) uint8 { return uint8(t.Unpack64()) }